SEO using MicroFormat
MicroFormat is a way of using standard HTML tags to encode additional information into the page. This could be Geo data, calendar data, etc…
Example
In this example, the contact information is presented as follows:
<div>
<div>Joe Doe</div>
<div>The Example Company</div>
<div>604-555-1234</div>
<a href=”http://example.com/”>http://example.com/</a>
</div>
With hCard microformat markup, that becomes:
<div class=”vcard”>
<div class=”fn”>Joe Doe</div>
<div class=”org”>The Example Company</div>
<div class=”tel”>604-555-1234</div>
<a class=”url” href=”http://example.com/”>http://example.com/</a>
</div>
These specs are evolving all the time, google around to find the latest.
November 9th, 2008 at 3:40 am
[...] data, etc… Example. In this example, the contact information is presented as follows: … View post Add your [...]
November 9th, 2008 at 3:41 am
[...] MicroFormat is a way of using standard HTML tags to encode additional information into the page. This could be Geo data, calendar data, etc… Example Original post [...]